/* This prototype owns one page block. Native CSS; no build step. */
.three_month_plan {
  background: var(--bg-page);
  color: var(--ink-accent);
}
.three_month_plan-hero {
  position: relative;
  isolation: isolate;
  background: var(--bg-inverse);
  color: var(--ink-inverse);
}
.three_month_plan-hero_image,
.three_month_plan-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% center;
}
.three_month_plan-video {
  opacity: 0;
  transition: opacity var(--duration-base) var(--ease-standard);
}
.three_month_plan-video[data-playing='true'] {
  opacity: 1;
}
.three_month_plan-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      color-mix(in srgb, var(--bg-inverse) 86%, transparent),
      color-mix(in srgb, var(--bg-inverse) 38%, transparent)
    ),
    linear-gradient(0deg, color-mix(in srgb, var(--bg-inverse) 65%, transparent), transparent 50%);
}
.three_month_plan-hero_inner {
  position: relative;
  z-index: calc(var(--z-sink) + 2);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: calc(100vh - var(--wp-admin--admin-bar--height, 0px));
  min-height: calc(100svh - var(--wp-admin--admin-bar--height, 0px));
  max-width: 90rem;
  margin-inline: auto;
  padding: var(--space-24) var(--space-6) var(--space-8);
}
.three_month_plan-hero_copy {
  margin-block: auto;
  padding-block: var(--space-4) var(--space-8);
}
.three_month_plan-eyebrow {
  margin-bottom: var(--space-5);
  color: var(--ink-warm);
  font-size: var(--text-xs);
  font-weight: var(--weight-medium);
  line-height: var(--leading-base);
  letter-spacing: 0.13em;
}
.three_month_plan-eyebrow[data-variant='light'] {
  color: var(--ink-accent-inverse);
}
.three_month_plan-title {
  max-width: 56rem;
  margin-bottom: var(--space-6);
  font: var(--weight-regular) var(--text-5xl)/1.06 var(--font-heading);
  letter-spacing: -0.04em;
}
.three_month_plan-title em {
  color: var(--ink-accent-inverse);
  font-weight: var(--weight-regular);
}
.three_month_plan-hero_text {
  max-width: 32rem;
  margin-bottom: var(--space-8);
  font-size: var(--text-lg);
  font-weight: var(--weight-light);
  line-height: var(--leading-relaxed);
}
.three_month_plan-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-6) var(--space-8);
}
.three_month_plan-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-6);
  min-height: 3.5rem;
  padding: var(--space-4) var(--space-6);
  border: 1px solid transparent;
  border-radius: var(--radius-full);
  color: var(--ink-inverse);
  background: var(--action-secondary-hover);
  font-weight: var(--weight-medium);
  text-align: center;
  transition:
    background-color var(--duration-fast) var(--ease-standard),
    transform var(--duration-fast) var(--ease-standard);
}
.three_month_plan-button:hover {
  background: var(--action-secondary);
  transform: translateY(-2px);
}
.three_month_plan-button[data-variant='light'] {
  background: var(--bg-paper);
  color: var(--ink-accent);
}
.three_month_plan-button[data-variant='light']:hover {
  background: var(--bg-paper-deep);
}
.three_month_plan-button span {
  font-size: var(--text-xl);
}
.three_month_plan-text_link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-4);
  min-height: 2.75rem;
  border-bottom: 1px solid currentColor;
  font-weight: var(--weight-medium);
}
.three_month_plan-text_link:hover {
  color: var(--ink-warm);
}
.three_month_plan-text_link[data-variant='light'] {
  color: var(--ink-inverse);
}
.three_month_plan-text_link[data-variant='light']:hover {
  color: var(--ink-accent-inverse);
}
.three_month_plan-hero_note {
  margin-top: var(--space-5);
  color: var(--ink-on-inverse);
  font-size: var(--text-sm);
}
.three_month_plan-hero_footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
  padding-top: var(--space-4);
  border-top: 1px solid var(--border-inverse);
  font-size: var(--text-xs);
  letter-spacing: 0.07em;
}
.three_month_plan-hero_footer p {
  max-width: 30rem;
}
.three_month_plan-hero_footer span {
  margin-inline: var(--space-2);
  color: var(--ink-accent-inverse);
}
.three_month_plan-at_glance {
  padding: var(--space-8) var(--space-6);
  border-bottom: 1px solid var(--border-base);
  background: var(--bg-paper);
}
.three_month_plan-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-6);
  font-size: var(--text-xs);
  color: var(--ink-muted);
}
.three_month_plan-fact {
  display: block;
  margin-bottom: var(--space-2);
  color: var(--ink-accent);
  font: var(--weight-regular) var(--text-2xl)/var(--leading-tight) var(--font-heading);
}
.three_month_plan-section {
  padding: var(--space-16) var(--space-6);
  /* WordPress adds its toolbar offset through scroll-padding on html. */
  scroll-margin-top: 5.5rem;
}
.three_month_plan-section[data-variant='paper'] {
  background: var(--bg-paper);
}
.three_month_plan-section[data-variant='dark'] {
  --c-heading-accent: var(--ink-accent-inverse);
  background: var(--bg-inverse);
  color: var(--ink-inverse);
}
.three_month_plan-heading {
  margin-bottom: var(--space-6);
  font: var(--weight-regular) var(--text-4xl)/1.15 var(--font-heading);
  letter-spacing: -0.035em;
  text-wrap: balance;
}
.three_month_plan-heading em {
  color: var(--c-heading-accent, var(--ink-warm));
}
.three_month_plan-lead {
  margin-bottom: var(--space-6);
  font-size: var(--text-xl);
  font-weight: var(--weight-light);
  line-height: var(--leading-relaxed);
}
.three_month_plan-copy {
  color: var(--ink-muted);
  line-height: var(--leading-relaxed);
}
.three_month_plan-fit_list {
  display: grid;
  gap: var(--space-4);
  margin-top: var(--space-8);
  list-style: none;
}
.three_month_plan-fit_list li,
.three_month_plan-offer_list li {
  display: flex;
  align-items: baseline;
  gap: var(--space-3);
}
.three_month_plan-fit_list li::before,
.three_month_plan-offer_list li::before {
  content: '✓';
  flex-shrink: 0;
  color: var(--ink-warm);
}
.three_month_plan-section_intro {
  max-width: 48rem;
  margin: var(--space-0) auto var(--space-12);
  text-align: center;
}
.three_month_plan-pillar {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--bg-page);
}
.three_month_plan-pillar_image {
  width: 100%;
  height: auto;
  aspect-ratio: 1.4;
  object-fit: cover;
}
.three_month_plan-pillar_image[data-variant='coach'] {
  object-position: center 30%;
}
.three_month_plan-pillar_body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: var(--space-6);
}
.three_month_plan-subheading {
  margin-bottom: var(--space-4);
  font: var(--weight-regular) var(--text-3xl)/var(--leading-tight) var(--font-heading);
  letter-spacing: -0.025em;
}
.three_month_plan-inclusion {
  margin-top: auto;
  padding-top: var(--space-6);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  line-height: var(--leading-relaxed);
}
.three_month_plan-resources {
  display: grid;
  gap: var(--space-8);
  margin-top: var(--space-12);
  padding-top: var(--space-10);
  border-top: 1px solid var(--border-strong);
  color: var(--ink-muted);
  font-size: var(--text-sm);
  line-height: var(--leading-relaxed);
}
.three_month_plan-resource_intro {
  color: var(--ink-accent);
  font: var(--weight-regular) var(--text-3xl)/var(--leading-tight) var(--font-heading);
}
.three_month_plan-resource_intro em {
  color: var(--ink-warm);
}
.three_month_plan-resource_icon {
  display: block;
  width: 1.75rem;
  height: 1.75rem;
  margin-bottom: var(--space-4);
  color: var(--ink-warm);
}
.three_month_plan-resource_icon svg {
  width: 100%;
  height: 100%;
}
.three_month_plan-resource_title {
  margin-bottom: var(--space-2);
  color: var(--ink-accent);
  font-size: var(--text-base);
  font-weight: var(--weight-medium);
}
.three_month_plan-step {
  padding-top: var(--space-6);
  border-top: 1px solid var(--border-inverse);
  color: var(--ink-on-inverse);
  line-height: var(--leading-relaxed);
}
.three_month_plan-step_number {
  display: block;
  margin-bottom: var(--space-8);
  color: var(--ink-accent-inverse);
  font: var(--weight-regular) var(--text-6xl)/1 var(--font-heading);
}
.three_month_plan-coach_photo {
  position: relative;
  max-width: 34rem;
  overflow: hidden;
  border-radius: var(--radius-xl);
}
.three_month_plan-coach_photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 28%;
}
.three_month_plan-photo_caption {
  position: absolute;
  inset: auto 0 0;
  padding: var(--space-6) var(--space-8);
  color: var(--ink-inverse);
  background: var(--bg-inverse);
  font: var(--weight-regular) var(--text-2xl)/var(--leading-base) var(--font-heading);
}
.three_month_plan-photo_caption span {
  display: block;
  font: var(--text-xs)/var(--leading-base) var(--font-body);
  letter-spacing: 0.08em;
}
.three_month_plan-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-block: var(--space-6);
}
.three_month_plan-credentials span {
  padding: var(--space-2) var(--space-3);
  background: var(--bg-paper);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
}
.three_month_plan-detail {
  --c-expand-turn: 0deg;
  border-bottom: 1px solid var(--border-strong);
}
.three_month_plan-detail[open] {
  --c-expand-turn: 45deg;
}
.three_month_plan-summary {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  min-height: 5rem;
  padding-block: var(--space-5);
  font-size: var(--text-lg);
  line-height: var(--leading-base);
  list-style: none;
  cursor: pointer;
}
.three_month_plan-summary::-webkit-details-marker {
  display: none;
}
.three_month_plan-summary:hover {
  color: var(--ink-warm);
}
.three_month_plan-roadmap {
  max-width: 66rem;
  margin-inline: auto;
}
.three_month_plan-roadmap_stop {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: 3rem minmax(0, 1fr);
  align-items: start;
  column-gap: var(--space-5);
  padding-bottom: var(--space-10);
}
.three_month_plan-roadmap_stop:last-child {
  padding-bottom: var(--space-0);
}
.three_month_plan-road {
  position: absolute;
  z-index: var(--z-sink);
  top: 1.5rem;
  left: 0;
  width: 3rem;
  height: 100%;
  overflow: visible;
  scale: var(--c-road-direction, 1) 1;
}
.three_month_plan-roadmap_stop:nth-child(even) {
  --c-road-direction: -1;
}
.three_month_plan-road_edge,
.three_month_plan-road_center {
  fill: none;
  vector-effect: non-scaling-stroke;
}
.three_month_plan-road_edge {
  stroke: var(--bg-paper-deep);
  stroke-width: 16;
}
.three_month_plan-road_center {
  stroke: var(--ink-warm);
  stroke-width: 1;
  stroke-dasharray: 3 7;
  stroke-linecap: round;
}
.three_month_plan-milestone {
  display: grid;
  place-items: center;
  grid-column: 1;
  grid-row: 1;
  width: 3rem;
  height: 3rem;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-full);
  color: var(--c-milestone-ink, var(--ink-warm));
  background: var(--c-milestone-bg, var(--bg-paper));
  font: var(--weight-regular) var(--text-xl)/1 var(--font-heading);
}
.three_month_plan-roadmap_stop:last-child {
  --c-milestone-bg: var(--bg-inverse);
  --c-milestone-ink: var(--ink-inverse);
}
.three_month_plan-session {
  grid-column: 2;
  grid-row: 1;
  padding-top: var(--space-2);
}
.three_month_plan-session_title {
  margin-bottom: var(--space-3);
  font: var(--weight-regular) var(--text-2xl)/var(--leading-tight) var(--font-heading);
  letter-spacing: -0.025em;
}
.three_month_plan-session_description {
  color: var(--ink-muted);
  line-height: var(--leading-relaxed);
}
.three_month_plan-expand {
  margin-left: auto;
  flex-shrink: 0;
  font-size: var(--text-2xl);
  font-weight: var(--weight-light);
  rotate: var(--c-expand-turn);
  transition: rotate var(--duration-fast) var(--ease-standard);
}
.three_month_plan-answer {
  padding: var(--space-0) var(--space-8) var(--space-6) var(--space-10);
  color: var(--ink-muted);
  line-height: var(--leading-relaxed);
}
.three_month_plan-answer[data-variant='faq'] {
  padding-left: var(--space-0);
}
.three_month_plan-personal_note {
  margin-top: var(--space-8);
  padding-left: var(--space-5);
  border-left: 2px solid var(--border-focus);
  color: var(--ink-warm);
  line-height: var(--leading-relaxed);
}
.three_month_plan-offer {
  padding: var(--space-8);
  border: 1px solid var(--border-strong);
  border-top: 3px solid var(--border-focus);
  border-radius: var(--radius-xl);
  background: var(--bg-paper);
}
.three_month_plan-offer_title {
  margin-bottom: var(--space-8);
  font: var(--weight-regular) var(--text-3xl)/var(--leading-tight) var(--font-heading);
  letter-spacing: -0.025em;
}
.three_month_plan-price_label {
  color: var(--ink-muted);
  font-size: var(--text-sm);
}
.three_month_plan-price {
  margin-block: var(--space-2);
  font: var(--weight-regular) var(--text-7xl)/1 var(--font-heading);
  letter-spacing: -0.05em;
}
.three_month_plan-price span {
  color: var(--ink-muted);
  font: var(--text-base)/var(--leading-base) var(--font-body);
  letter-spacing: normal;
}
.three_month_plan-price_term {
  max-width: 25rem;
  color: var(--ink-muted);
  font-size: var(--text-sm);
}
.three_month_plan-offer_list {
  display: grid;
  gap: var(--space-4);
  margin-block: var(--space-6) var(--space-8);
  padding-top: var(--space-6);
  border-top: 1px solid var(--border-strong);
  font-size: var(--text-sm);
  list-style: none;
}
.three_month_plan-button[data-size='wide'] {
  width: 100%;
}
.three_month_plan-offer_note {
  margin-top: var(--space-5);
  color: var(--ink-muted);
  font-size: var(--text-xs);
  line-height: var(--leading-relaxed);
}
.three_month_plan-closing {
  padding: var(--space-20) var(--space-6);
  background: radial-gradient(ellipse at center, var(--bg-page), var(--bg-paper-deep));
  text-align: center;
}
.three_month_plan-lotus {
  width: 3.5rem;
  height: 3.5rem;
  margin: var(--space-0) auto var(--space-8);
}
.three_month_plan-closing_note {
  margin-top: var(--space-5);
  color: var(--ink-muted);
  font-size: var(--text-sm);
}
.three_month_plan-disclosure {
  padding: var(--space-8) var(--space-6);
  color: var(--ink-muted);
  font-size: var(--text-xs);
  line-height: var(--leading-relaxed);
}
.three_month_plan-disclosure a {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}
@media (min-width: 40rem) {
  .three_month_plan-title {
    font-size: var(--text-7xl);
  }
  .three_month_plan-facts,
  .three_month_plan-resources {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 48rem) {
  .three_month_plan-hero_inner {
    padding-inline: var(--space-12);
  }
  .three_month_plan-hero_footer {
    padding-top: var(--space-6);
  }
  .three_month_plan-section {
    padding: var(--space-24) var(--space-12);
  }
  .three_month_plan-heading {
    font-size: var(--text-5xl);
  }
  .three_month_plan-facts {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    text-align: center;
  }
  .three_month_plan-at_glance {
    padding-block: var(--space-10);
  }
  .three_month_plan-offer {
    padding: var(--space-12);
  }
  .three_month_plan-roadmap_stop {
    grid-template-columns: minmax(0, 1fr) 6rem minmax(0, 1fr);
    column-gap: var(--space-8);
    padding-bottom: var(--space-5);
  }
  .three_month_plan-road {
    left: calc(50% - 3rem);
    width: 6rem;
  }
  .three_month_plan-milestone {
    grid-column: 2;
    justify-self: center;
  }
  .three_month_plan-roadmap_stop:nth-child(even) {
    --c-session-column: 3;
    --c-session-align: left;
  }
  .three_month_plan-session {
    grid-column: var(--c-session-column, 1);
    text-align: var(--c-session-align, right);
  }
}
@media (min-width: 64rem) {
  .three_month_plan-hero_inner {
    padding-inline: var(--space-20);
  }
  .three_month_plan-section {
    padding-block: var(--space-24);
  }
  .three_month_plan-resources {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: var(--space-10);
  }
  .three_month_plan-closing {
    padding-block: var(--space-24);
  }
}
@media (min-width: 48rem) and (min-height: 48rem) {
  .three_month_plan-title {
    font-size: var(--text-8xl);
  }
}
@media (min-width: 48rem) and (min-height: 52rem) {
  .three_month_plan-hero_inner {
    padding-top: var(--space-32);
  }
  .three_month_plan-hero_copy {
    padding-block: var(--space-8) var(--space-12);
  }
}
@media (min-width: 64rem) and (min-height: 52rem) {
  .three_month_plan-title {
    font-size: var(--text-9xl);
  }
}
@media (prefers-reduced-motion: reduce) {
  .three_month_plan-button:hover {
    transform: none;
  }
}
